summary refs log tree commit diff
path: root/pkgs/development/libraries/mtdev
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2011-08-08 00:25:38 +0000
committerShea Levy <shea@shealevy.com>2011-08-08 00:25:38 +0000
commit0c4608c53c9d636f9b7cee81daab24d2fa74e078 (patch)
treed3db300d04c9f1f613a57242c5bf92ad6f8cffb8 /pkgs/development/libraries/mtdev
parentf99a91628c78998bb9283c83ff5653898ba356db (diff)
downloadnixlib-0c4608c53c9d636f9b7cee81daab24d2fa74e078.tar
nixlib-0c4608c53c9d636f9b7cee81daab24d2fa74e078.tar.gz
nixlib-0c4608c53c9d636f9b7cee81daab24d2fa74e078.tar.bz2
nixlib-0c4608c53c9d636f9b7cee81daab24d2fa74e078.tar.lz
nixlib-0c4608c53c9d636f9b7cee81daab24d2fa74e078.tar.xz
nixlib-0c4608c53c9d636f9b7cee81daab24d2fa74e078.tar.zst
nixlib-0c4608c53c9d636f9b7cee81daab24d2fa74e078.zip
Add mtdev
svn path=/nixpkgs/trunk/; revision=28366
Diffstat (limited to 'pkgs/development/libraries/mtdev')
-rw-r--r--pkgs/development/libraries/mtdev/default.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/development/libraries/mtdev/default.nix b/pkgs/development/libraries/mtdev/default.nix
new file mode 100644
index 000000000000..ebbbdff6b5cc
--- /dev/null
+++ b/pkgs/development/libraries/mtdev/default.nix
@@ -0,0 +1,11 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation {
+  name = "mtdev-1.1.0";
+
+  src = fetchurl {
+    url = "http://bitmath.org/code/mtdev/mtdev-1.1.0.tar.gz";
+    sha256 = "14mky2vrzgy3x6k3rwkkpqkqyivbr6ym99gj5jmil9fqa9644lw4";
+  };
+}
+