summary refs log tree commit diff
path: root/pkgs/development/libraries/libelf-freebsd
diff options
context:
space:
mode:
authorjanus <janus@xn--kn-1ia.guru>2015-11-26 17:33:58 +0000
committerjanus <janus@xn--kn-1ia.guru>2016-01-01 17:01:13 +0000
commit9897b356612c4bb06a9c9d688da52134dfe8fb95 (patch)
treed4a41b097c29781ba05d8635d0296f94cc95a9c4 /pkgs/development/libraries/libelf-freebsd
parentf351aaaf85c6b6323660db6ce638f057947a333f (diff)
downloadnixpkgs-9897b356612c4bb06a9c9d688da52134dfe8fb95.tar
nixpkgs-9897b356612c4bb06a9c9d688da52134dfe8fb95.tar.gz
nixpkgs-9897b356612c4bb06a9c9d688da52134dfe8fb95.tar.bz2
nixpkgs-9897b356612c4bb06a9c9d688da52134dfe8fb95.tar.lz
nixpkgs-9897b356612c4bb06a9c9d688da52134dfe8fb95.tar.xz
nixpkgs-9897b356612c4bb06a9c9d688da52134dfe8fb95.tar.zst
nixpkgs-9897b356612c4bb06a9c9d688da52134dfe8fb95.zip
FreeBSD: patch expat, kerberos, libedit, ossp-uuid, lz4, sharutils, add libelf-freebsd
Diffstat (limited to 'pkgs/development/libraries/libelf-freebsd')
-rw-r--r--pkgs/development/libraries/libelf-freebsd/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libelf-freebsd/default.nix b/pkgs/development/libraries/libelf-freebsd/default.nix
new file mode 100644
index 00000000000..ee0b6d50408
--- /dev/null
+++ b/pkgs/development/libraries/libelf-freebsd/default.nix
@@ -0,0 +1,28 @@
+{ fetchsvn, stdenv }:
+
+stdenv.mkDerivation (rec {
+  version = "3258";
+  name = "libelf-freebsd-${version}";
+
+  #src = fetchurl {
+  #  url = "http://sourceforge.net/code-snapshots/svn/e/el/elftoolchain/code/elftoolchain-code-${version}-trunk.zip";
+  #  sha256 = "0vf7s9dwk2xkmhb79aigqm0x0yfbw1j0b9ksm51207qwr179n6jr";
+  #};
+  src = fetchsvn {
+    url = svn://svn.code.sf.net/p/elftoolchain/code/trunk ;
+    rev = 3258;
+  };
+
+  doCheck = true;
+  
+  meta = {
+    description = "Essential compilation tools and libraries for building and analyzing ELF based program images";
+
+    homepage = https://sourceforge.net/p/elftoolchain/wiki/Home/;
+
+    license = stdenv.lib.licenses.bsd2;
+
+    platforms = stdenv.lib.platforms.freebsd;
+    maintainers = [ ];
+  };
+})