mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
cfr: Update to version 0_101 and remove platform restrictions
cfr is written in Java, so it should work in every platform supported by jre. This fix makes cfr usable in Darwin.
This commit is contained in:
parent
cf94a678f3
commit
d2f21ab3fc
@ -1,11 +1,11 @@
|
||||
{ stdenv, fetchurl, jre }:
|
||||
|
||||
let version = "0_100"; in
|
||||
let version = "0_101"; in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cfr-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
sha256 = "0q5kh5qdksykz339p55jz0q5cjqvxdzv3a7r4kkijgbfjm1ldr5f";
|
||||
sha256 = "0zwl3whypdm2qrw3hwaqjnifkb4wcdn8fx9scrjkli54bhr6dqch";
|
||||
url = "http://www.benf.org/other/cfr/cfr_${version}.jar";
|
||||
};
|
||||
|
||||
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
homepage = http://www.benf.org/other/cfr/;
|
||||
license = with licenses; mit;
|
||||
platforms = with platforms; linux;
|
||||
platforms = with platforms; all;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user